HTML5 Mobile Development Cookbook by unknow
Author:unknow
Language: eng
Format: epub
Publisher: Packt Publishing
Getting ready
In this example, we will use a function in Mobile Boilerplate. Create a file called ch04r06.html.
How to do it...
The following code will create a form with a submit button:
<!doctype html> <html> <head> <title>first.fm</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> #contact { width:220px; height:40px; } </style> </head> <body> <header> <h1>Contact Form</h1> </header> <div id="main"> <textarea id="contact"></textarea><br /> <button id="btn">INSTANT button!!!</button><br /> <span id="result"></span> </div> <footer> <small>© 2011 first.fm</small> </footer> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js"></script> <script src="//github.com/shichuan/mobile-html5-boilerplate/raw/master/js/mylibs/helper.js"></script> <script> var btn = document.getElementById("btn"); MBP.fastButton(btn,showForm); function showForm() { $("#result").html("Thank you for submitting, we will get back to you shortly!"); } </script> </body> </html>
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
The Mikado Method by Ola Ellnestam Daniel Brolund(21477)
Hello! Python by Anthony Briggs(20727)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(19164)
Dependency Injection in .NET by Mark Seemann(18795)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(18398)
Kotlin in Action by Dmitry Jemerov(18158)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(18048)
Adobe Camera Raw For Digital Photographers Only by Rob Sheppard(16943)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(16888)
Grails in Action by Glen Smith Peter Ledbrook(16023)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(13739)
Secrets of the JavaScript Ninja by John Resig & Bear Bibeault(11750)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(10610)
A Developer's Guide to Building Resilient Cloud Applications with Azure by Hamida Rebai Trabelsi(10585)
Jquery UI in Action : Master the concepts Of Jquery UI: A Step By Step Approach by ANMOL GOYAL(9683)
Hit Refresh by Satya Nadella(9097)
The Kubernetes Operator Framework Book by Michael Dame(8532)
Exploring Deepfakes by Bryan Lyon and Matt Tora(8355)
Robo-Advisor with Python by Aki Ranin(8299)